e15882e0197878c99fc27f3f099c70c771bc6152,src/protocol/http/org/apache/jmeter/protocol/http/sampler/WebServiceSampler.java,WebServiceSampler,sample,#,442
Before Change
.getResString("read_response_message")
.getBytes());
}
RESULT.setSuccessful(true);
// 1-22-04 updated the sampler so that when read
// response is set, it also sets SamplerData with
// the XML message, so users can see what was
After Change
.getResString("read_response_message")
.getBytes());
}
RESULT.setSuccessful(true);
RESULT.setResponseCode("200");
RESULT.setResponseHeaders(this.convertSoapHeaders(st.getHeaders()));
} else {
RESULT.setSuccessful(false);
RESULT.setResponseData(
st.getResponseSOAPContext().getContentType().getBytes());
RESULT.setResponseCode("000");